home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Workspace / Briefcase / Source / Briefcase.h < prev    next >
Text File  |  1992-08-10  |  819b  |  37 lines

  1. #import "MultApp.h"
  2.  
  3. /* Version 1.0b        Apr-19-92        Third Public Release    */
  4.  
  5. @interface Briefcase: MultApp
  6. {
  7.     int        timeDelay;                    /* time delay before window update */
  8. }
  9.  
  10. /* Public Methods */
  11.  
  12. - (int)delay;
  13. - setDelay:(int)value;
  14.  
  15. /* Target/Action Methods */
  16.  
  17. - addFile:sender;
  18.  
  19. /* Menu updating method */
  20.  
  21. - (BOOL)validateCommand:menuCell;
  22.  
  23. /* Application Delegate Methods */
  24.  
  25. - appWillInit:sender;
  26. - appWillTerminate:sender;
  27. - appDidBecomeActive:sender;
  28.  
  29. /* Listener Methods */
  30.  
  31. // Drag & Drop
  32. - (int)iconEntered:(int)windowNum at:(double)x :(double)y iconWindow:(int)iconWindowNum iconX:(double)iconX iconY:(double)iconY iconWidth:(double)iconWidth iconHeight:(double)iconHeight pathList:(const char *)pathList;
  33. - (int)iconExitedAt:(double)x :(double)y;
  34. - (int)iconReleasedAt:(double)x :(double)y ok:(int *)flag;
  35.  
  36. @end
  37.